home *** CD-ROM | disk | FTP | other *** search
/ Interactive Quarterly / The Best of New Machine Publishing 1 - Disc 4: Interactive Quarterly.iso / pc / demos / az / cyberx.dxr / 00307_PANIC VIDEO.ls < prev    next >
Encoding:
Text File  |  1996-10-06  |  455 b   |  32 lines

  1. on exitFrame
  2.   sound stop 1
  3.   sound stop 2
  4.   go(the frame)
  5. end
  6.  
  7. on mouseUp
  8.   global full_video, defi
  9.   if full_video = 1 then
  10.     go("video completo")
  11.   else
  12.     if defi = 1 then
  13.       go("video defi")
  14.     else
  15.       go("video normal")
  16.     end if
  17.   end if
  18. end
  19.  
  20. on keyUp
  21.   global full_video, defi
  22.   if full_video = 1 then
  23.     go("video completo")
  24.   else
  25.     if defi = 1 then
  26.       go("video defi")
  27.     else
  28.       go("video normal")
  29.     end if
  30.   end if
  31. end
  32.